ran out of nodes */
}
- iter = g_slist_next (iter);
+ iter = iter->next;
}
g_assert_not_reached (); /* we return when we find the target line */
goto found;
}
- tmp = g_slist_next (tmp);
+ tmp = tmp->next;
}
g_slist_free (child_nodes);
break;
}
- iter = g_slist_next (iter);
+ iter = iter->next;
}
g_slist_free (child_nodes);
if (info->tag == tag)
return info;
- list = g_slist_next (list);
+ list = list->next;
}
return NULL;
}
prev = list;
- list = g_slist_next (list);
+ list = list->next;
}
}
printf (" tag '%s': root at %p, toggle count %d\n",
info->tag->priv->name, info->tag_root, info->toggle_count);
- list = g_slist_next (list);
+ list = list->next;
}
if (tree->tag_infos == NULL)